home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993…ch: Other People's Memory / ADC Developer CD (1993-03) (''Other People's Memory'')_iso / Dev.CD Mar 93.iso / Tools & Apps / OS⁄Toolbox / Apple Events / AE Word Services 1.0d6 / Library Source / Gripe.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-19  |  228 b   |  10 lines  |  [TEXT/KAHL]

  1. #define USE_DEBUGGER    /* Undefine this to replace debugger calls with alerts */
  2.  
  3. #ifdef USE_DEBUGGER
  4. #define Gripe( foo )    DebugStr( foo )
  5. #else
  6. #define Gripe( foo )    RealGripe( foo )
  7. #endif
  8.  
  9. void RealGripe( StringPtr complaint );
  10.